home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / libcs / searcharg.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  3KB  |  83 lines

  1. /*
  2.  * Copyright (c) 1990 Carnegie Mellon University
  3.  * All Rights Reserved.
  4.  * 
  5.  * Permission to use, copy, modify and distribute this software and its
  6.  * documentation is hereby granted, provided that both the copyright
  7.  * notice and this permission notice appear in all copies of the
  8.  * software, derivative works or modified versions, and any portions
  9.  * thereof, and that both notices appear in supporting documentation.
  10.  *
  11.  * THE SOFTWARE IS PROVIDED "AS IS" AND CARNEGIE MELLON UNIVERSITY
  12.  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  13.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT
  14.  * SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, DIRECT,
  15.  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  16.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  17.  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  18.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19.  *
  20.  * Users of this software agree to return to Carnegie Mellon any
  21.  * improvements or extensions that they make and grant Carnegie the
  22.  * rights to redistribute these changes.
  23.  *
  24.  * Export of this software is permitted only after complying with the
  25.  * regulations of the U.S. Deptartment of Commerce relating to the
  26.  * Export of Technical Data.
  27.  */
  28. /*  searcharg  --  parse string from string table
  29.  *
  30.  *  Usage:  i = searcharg (ptr,brk,prompt,table,defalt);
  31.  *    int i;
  32.  *    char **ptr,*brk,*prompt,**table,*defalt;
  33.  *
  34.  *  Searcharg parses an argument from the string pointed to by "ptr",
  35.  *  and bumps ptr to point to the next argument in the string.
  36.  *  The argument thus parsed is looked up in the string array
  37.  *  "table", and its index is returned.  If the argument is ambiguous
  38.  *  or not found in the table, getsearch() is used to ask the user
  39.  *  for a string and look it up.
  40.  *  "Brk" is the list of characters which may terminate an argument;
  41.  *  if 0, then " " is used.
  42.  *
  43.  *  The string table might be declared this way:
  44.  *    char *table[] {"one","two","three",0};
  45.  *  The last entry must be a zero.
  46.  *
  47.  *  HISTORY
  48.  * $Log:    searcharg.c,v $
  49.  * Revision 1.2  90/12/11  17:58:26  mja
  50.  *     Add copyright/disclaimer for distribution.
  51.  * 
  52.  * 23-Jan-80  Steven Shafer (sas) at Carnegie-Mellon University
  53.  *    Created.
  54.  *
  55.  *
  56.  */
  57.  
  58. #include <libc.h>
  59.  
  60. int getsearch(),stabsearch();
  61. char *nxtarg();
  62.  
  63. int searcharg (ptr,brk,prompt,table,defalt)
  64. char **ptr,*brk,*prompt,**table,*defalt;
  65. {
  66.     register char *arg;
  67.     register int i;
  68.  
  69.     arg = nxtarg (ptr,brk);        /* parse an argument */
  70.     fflush (stdout);
  71.  
  72.     if (*arg) {            /* if there's an argument */
  73.         i = stabsearch (arg,table,0);
  74.     } 
  75.     else {
  76.         i = -1;
  77.     }
  78.  
  79.     if (i < 0)  i = getsearch (prompt,table,defalt);
  80.  
  81.     return (i);
  82. }
  83.